home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / dbms_mag / 9101 / desq_a.jan next >
Text File  |  1990-11-21  |  306b  |  14 lines

  1. LISTING A:
  2.  
  3. * Writing messages to an x,y coordinate using WIN_AtSay():
  4. * Using the Clipper API
  5. winhan = WIN_Me()
  6. WIN_AtSay(winhan, 5,8, "Hello World")
  7.  
  8. (* Using the Pascal API: *)
  9. winhan = WIN_Me;
  10.  
  11. (* Now  move the cursor *)
  12. WIN_Cursor(WinHan, row, col);
  13. WIN_sWrite(WinHan,  'Hello World' );
  14.